home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / Delphi Digests / Delphi Vol. 3 / Delphi 3.42 < prev    next >
Encoding:
Text File  |  1988-04-08  |  23.5 KB  |  717 lines  |  [TEXT/ttxt]

  1. 29-Sep-87 08:22:34-PDT,24696;000000000001
  2. Date: Sun 6 Sep 87 15:20:11-GMT
  3. From: Jeff Shulman <SHULMAN@SDR>
  4. Subject: Delphi Mac Digest V3 #42
  5.  
  6. Delphi Mac Digest     Sunday, September 6, 1987      Volume 3 : Issue 42 
  7.  
  8. Today's Topics:
  9.      HyperCard logic problem (6 messages)
  10.      Warning about HyperCard Stacks
  11.      Field glitches
  12.      2000 and Mac II (3 messages)
  13.      RE: SIZE resource
  14.      RE: object-oriented c (4 messages)
  15.      re: SE Internal Hard Disks (2 messages)
  16.      Re: Hard Disks
  17.      HyperCard Linking and Scripts
  18.      function pointers in C (3 messages)
  19.      HyperCard modification date contaminatio
  20.      OCR Scanner (3 messages)
  21.      HyperCard overlapping buttons
  22.      Importing, sorting, and compacting (2 messages)
  23.      HyperCard Fields
  24.      RE: Usenet Mac Digest V3 #64
  25.      SIMM RAM for the MacII
  26.      RE: Calculating a new Menu on the spot
  27.      A C formatter (2 messages)
  28.  
  29. ---------------------------------------------------------------------- 
  30.  
  31. From: MACWEEKBOS
  32. Subject: HyperCard logic problem
  33. Date: 28-AUG 10:17 Programming
  34.  
  35. I ran into a weird problem with HyperCard that seems like a programmer
  36. error at first, but is so simple, I can't see a problem. I've got a
  37. button (background) that is to go to the recent card unless it's the
  38. first card in the stack where it should do nothing. I can get it to work
  39. by putting in an IF statement on Card Number = 1. However, if I use the
  40. Card ID (found via Card Info menu) as a test, it doesn't work! It seems
  41. as if the card id has been screwed up somehow, and displays in all cases
  42. differently from what it is. (I "Put" into Message and it looks right). 
  43. Guess I'll try cutting and pasting the card, but that's a hassle.
  44.  
  45. Ric
  46.  
  47. ------------------------------
  48.  
  49. From: PEABO
  50. Subject: RE: HyperCard logic problem (Re: Msg 22111)
  51. Date: 28-AUG 13:57 Programming
  52.  
  53. If you want it to work on the first card of a stack, then you don't want
  54. to use the card ID (because the card could be moved but its ID would not
  55. change). So, using card number = 1 is the right thing to do.
  56.  
  57. I think there is also a distinction between short name of the card and
  58. long name of the card which might have something to do with this.
  59.  
  60. peter
  61.  
  62. ------------------------------
  63.  
  64. From: STEVEMALLER
  65. Subject: RE: HyperCard logic problem (Re: Msg 22111)
  66. Date: 28-AUG 10:20 Programming
  67.  
  68. Ric,
  69.  
  70. Can you post the script in a message so we (I) can see what you're
  71. trying to do?
  72.  
  73.  
  74.     Steve Maller
  75.     Apple Computer
  76.  
  77. ------------------------------
  78.  
  79. From: MACWEEKBOS
  80. Subject: RE: HyperCard logic problem (Re: Msg 22115)
  81. Date: 28-AUG 14:20 Programming
  82.  
  83. Argh... it's kind of proprietary, otherwise I would've posted it (the
  84. info in the stack is proprietary). I did try cutting and pasting the
  85. card to get a new ID, and that didn't help. I'll see if I can dig up the
  86. long/short stuff.
  87.  
  88. Actually, though "number = 1" is right for now, I envision this becoming
  89. subservient to something else in the stack, so I want to use the card
  90. id, rather than the card number.
  91.  
  92. ------------------------------------------------------------------------
  93.  
  94. [from memory...]
  95.  
  96. On MouseUp
  97.   Get the id of this card
  98.   if it <> 3042 then go to recent card
  99. End MouseUp
  100.  
  101. [the above doesn't work, what does is the below]
  102.  
  103. On MouseUp
  104.   Get the number of this card
  105.   if it <> 1 then go to recent card
  106. End MouseUp
  107.  
  108. ------------------------------------------------------------------------
  109.  
  110. Ric
  111.  
  112. ------------------------------
  113.  
  114. From: PEABO
  115. Subject: RE: HyperCard logic problem (Re: Msg 22117)
  116. Date: 28-AUG 17:02 Programming
  117.  
  118. What do you get in "it" when you say "get the id of this card"?  Chesley
  119. recommends using the message box as a handy place to display debugging
  120. information.  ("show msg" and "put it in msg" does that, I think.)
  121.  
  122. peter
  123.  
  124. ------------------------------
  125.  
  126. From: MACWEEKBOS
  127. Subject: RE: HyperCard logic problem (Re: Msg 22120)
  128. Date: 28-AUG 18:10 Programming
  129.  
  130. Yeah, I did exactly that to make sure I had the id correct. What showed
  131. in the message box was the same that showed in Card Info.
  132.  
  133. Ric
  134.  
  135. ------------------------------
  136.  
  137. From: PEABO
  138. Subject: Warning about HyperCard Stacks
  139. Date: 28-AUG 14:03 Creative Pursuits
  140.  
  141. HyperCard stacks are opened in read-write mode, and updates are near-
  142. instantaneous (that is, there is no separate step of saving changes like
  143. there is in many other Mac documents).
  144.  
  145. What this means is that if you are downloading and uploading stacks, you
  146. should ALWAYS make a copy of the stack before clicking on it, and upload
  147. the original rather than the copy!  Most stacks will probably not modify
  148. themselves just because you ran them, but I saw an example of a stack
  149. which had some stuff erased out of it by the time it got to me.  I guess
  150. someone was experimenting with it and didn't realize they were making a
  151. permanent change!
  152.  
  153. Please post this message on BBS systems so the word will get out about
  154. this hazard.
  155.  
  156. peter
  157.  
  158. ------------------------------
  159.  
  160. From: MACWEEKBOS
  161. Subject: Field glitches
  162. Date: 28-AUG 18:13 Bugs & Features
  163.  
  164. Here's another weirdo problem. I've got a field defined to "show lines"
  165. and it doesn't. Changing fonts and sizes doesn't seem to matter and I
  166. don't think I'm doing anything unusual.  (It's a scrolling field.)
  167.  
  168. Ric
  169.  
  170. ------------------------------
  171.  
  172. From: INTECO
  173. Subject: 2000 and Mac II
  174. Date: 28-AUG 13:49 Programming Techniques
  175.  
  176. Well I hit the 2000... but nevertheless:
  177.  
  178. Hierachical menus are very nice but how can I find out the position in a
  179. hierachical menu (e.g. font names) if I want to open another h.menu
  180. related to it (font sizes). ??? Further we had a funny observation under
  181. finder 6.0 that we had to lock the menus to run ...
  182.  
  183. Uwe
  184.  
  185. ------------------------------
  186.  
  187. From: SOCCERKING
  188. Subject: RE: 2000 and Mac II (Re: Msg 2000)
  189. Date: 30-AUG 23:26 Programming Techniques
  190.  
  191. I assume the following about the structure of the hierarchial menus you
  192. are talking about. If i am sounding redundent or if I am way off track
  193. please forgive me.
  194.  
  195. Any menu item that has a submenu has the postfix "'|'ID num" where ID
  196. num is a resource id for a independant menu. The MDEF creates an
  197. illusion of hierarchracy. MenuSelect returns the MenuID of the submenu
  198. in which the item was selected. The Item number is just like any other
  199. menu item number.
  200.  
  201. Therefor to get an individual menu item you simply use the menu manager
  202. in the usual way.
  203.  
  204. brent.
  205.  
  206. ------------------------------
  207.  
  208. From: PEABO
  209. Subject: RE: 2000 and Mac II (Re: Msg 2017)
  210. Date: 31-AUG 21:14 Programming Techniques
  211.  
  212. Say you have a menu with items A, B, C, and D on it, which are font
  213. names.  You would want to create 4 different submenus, each with a list
  214. of font sizes for the corresponding item on the main menu (call them 1,
  215. 2, 3, and 4).  Then you set up the main menu so that 1 is attached to A
  216. only, 2 to B, and so on.
  217.  
  218. Does this make sense? peter
  219.  
  220. ------------------------------
  221.  
  222. From: PEABO
  223. Subject: RE: SIZE resource (Re: Msg 22130)
  224. Date: 29-AUG 21:17 Network Digests
  225.  
  226. >From: tomc@mntgfx.MENTOR.COM (Tom Carstensen)
  227. >Subject: SIZE resource
  228. >Date: 24 Aug 87 18:25:14 GMT
  229. >Organization: Mentor Graphics, Beaverton OR
  230.  
  231. >Can anybody either explain, or point me in a direction about what
  232. >exactly the SIZE (ID = -1) resource is supposed to contain, in terms of
  233. >min/max size, and the other fields?
  234.  
  235. ResEdit knows the format of this resource, so you can either just use
  236. ResEdit or you can look in the TMPL for SIZE.  It is also documented in
  237. the Switcher programmer's guide somewhere:  a word containing the flags
  238. for suspend/resume events and automatic screen save (and more things
  239. now, under MultiFinder) and two longwords giving the minimum and maximum
  240. memory size values.
  241.  
  242. peter                          "In any context, half of all references
  243. PEABO @ DELPHI                  are local and half are global."
  244.  
  245. ------------------------------
  246.  
  247. From: JIMH
  248. Subject: RE: object-oriented c (Re: Msg 2005)
  249. Date: 30-AUG 02:10 Programming Techniques
  250.  
  251. Peter, oh and by the by do you (or anyone else) know any slick tricks to
  252. clip white space off the edge of a macpaint file?  best jim
  253.  
  254. ------------------------------
  255.  
  256. From: PEABO
  257. Subject: RE: object-oriented c (Re: Msg 2007)
  258. Date: 30-AUG 10:58 Programming Techniques
  259.  
  260. The 128K ROMs have a trap in them that does the lasso function, don't
  261. they?
  262.  
  263. However, for your application, just getting the smallest bounding
  264. rectangle may be enough (or maybbe make it a bit larger).  I'd just do
  265. it by slavishly examining the top and bottom for blank scan lines and
  266. then working in from the two sides.
  267.  
  268. peter
  269.  
  270. ------------------------------
  271.  
  272. From: JIMH
  273. Subject: RE: object-oriented c (Re: Msg 2008)
  274. Date: 30-AUG 15:54 Programming Techniques
  275.  
  276. Peter, thats what i did but it is a little slow on a mac II cant guess
  277. what it would be line on a +.  best jim
  278.  
  279. ------------------------------
  280.  
  281. From: ASMCOR
  282. Subject: RE: object-oriented c (Re: Msg 2007)
  283. Date: 31-AUG 19:53 Programming Techniques
  284.  
  285.   Jim - take a look at CalcMask, I think that's what you want. Page 24
  286. of volume 4 of IM.
  287.   Jan
  288.  
  289. ------------------------------
  290.  
  291. From: MACWEEKBOS
  292. Subject: re: SE Internal Hard Disks (Re: Msg 22130)
  293. Date: 30-AUG 12:14 Network Digests
  294.  
  295. To: kiyun@prism.UUCP 
  296. Subject: SE Internal Hard Disks
  297.  
  298. A review of internal hard disks for the Mac SE (which I wrote) appears
  299. in the July 20 issue of MacWEEK. You might want to ask them for a copy
  300. (415-882.7370). I had no way of evaluating reliability, except for minor
  301. notes about problems experienced in the few weeks I had (assumed to be
  302. software and cabling problems), although I'd assume that Rodimes and
  303. Conners are reliable from experience with these drives in the past
  304. (Conners being used in HyperDrive FX/40s and ProApp 40s). There were
  305. substantial speed differences between the products, even those using the
  306. same hard disk (due, no doubt, to the driver code). In the end, my
  307. experience in the review convinced me I didn't want an internal hard
  308. disk at all.
  309.  
  310. Ric Ford "MacWEEK" Boston bureau
  311.  
  312. ------------------------------
  313.  
  314. From: JIMH
  315. Subject: RE: re: SE Internal Hard Disks (Re: Msg 22144)
  316. Date: 30-AUG 15:52 Network Digests
  317.  
  318. Ric, by the by the last issue of macweek quotes someone from adobe as
  319. saying they get $250 per laserwriter.  Scott Knaster told me it was
  320. $1500.  best jim
  321.  
  322. ------------------------------
  323.  
  324. From: MACWEEKBOS
  325. Subject: Re: Hard Disks
  326. Date: 30-AUG 12:36 Network Digests
  327.  
  328. >to: raifer@net1.ucsd.edu (Dan Graifer)
  329. >Subject: Re: Hard Disks
  330.  
  331. 1) I'd suggest using 1 field/line format rather than tab-delimited
  332. format, because of all the different ways tabs get treated along the
  333. line and because it's hard to tell sometimes when a field is
  334. accidentally dropped. (probably each field should be of the form
  335. <label>/<data> like this: "mfg/SuperMac Technology")
  336.  
  337. 2) Noise is *so* subjective, I don't know how you can rate it
  338. consistently when every reporter is different.
  339.  
  340. 3) Capacity should be *formatted* capacity as reported by the Finder
  341. (3.2 and greater).
  342.  
  343. 4) Termination should be listed (Internal/external)
  344.  
  345. 5) SCSI addressing should be listed (VARIABLE/FIXED,
  346. button/jumper/other, range: 0-6, 2-5, etc.)
  347.  
  348. 6) Port should be listed as SCSI or DB25
  349.  
  350. 7) Should DiskTimer II results be MIN() or AVERAGE(). The results are
  351. not constant from run to run.
  352.  
  353. 8) Reliability, I'd suggest, should be made more quantifiable: number of
  354. failure/number of months in use
  355.  
  356. 9) Responsiveness the same: number of answers/number of calls; and
  357. average length of call
  358.  
  359. 10) Software is a big category, but there's only one important item, not
  360. spoolers, not backup (because they're available separately), but
  361. *formatting*.  That is, what does the formatter do? Can it update
  362. without reinitializing? Can it test the disk? (with/without destroying
  363. data). Can it set the SCSI ID? Does it give low-level info (bad
  364. blocks,etc.); low-level editing of data?  Can it mount a disk that
  365. doesn't want to mount? Does it *work*?
  366.  
  367. 11) I'd add a second, "real world" disk performance test. I've used one
  368. in a number of different reviews and it has proven to be a good
  369. indicator: copy a large file (766K was used, an HFS Backup floppy file)
  370. in the Finder and see how long it takes (avoid fragmentation, make 5
  371. trials). Do it by selecting the file and saying "Duplicate."
  372.  
  373. Ric Ford Technical Editor, MacWEEK Boston bureau
  374.  
  375. ------------------------------
  376.  
  377. From: MACWEEKBOS
  378. Subject: HyperCard Linking and Scripts
  379. Date: 30-AUG 15:20 Programming
  380.  
  381. Well, I tried using the link checkbox on a card that had a fairly
  382. extensive script. The result was that HyperCard automatically went into
  383. the script, found the Go To command, and changed it to reflect the new
  384. destination without deleting or changing other parts of the script! I
  385. don't know what happens if you have two or more GO To's in your script.
  386. Maybe it takes the first one, or maybe the one outside an IF.  Dunno.
  387.  
  388. Ric
  389.  
  390. ------------------------------
  391.  
  392. From: JOSEF
  393. Subject: function pointers in C
  394. Date: 30-AUG 19:55 Programming Techniques
  395.  
  396. Could one of you C experts straighten me out on something?  I've always
  397. been a little hazy when it comes to using function pointers in C. If I
  398. want to declare the variable 'ptf' to be a pointer to a function I
  399. presume I do this with
  400.  
  401.         int (*ptf)();   /* pointer to function returning an integer */
  402.  
  403. Now I believe the correct way to invoke the function pointed to by ptf
  404. is:
  405.  
  406.         (*ptf)();
  407.  
  408. What's causing my confusion is that MPW apparently allows one to invoke
  409. this function with the statement:
  410.  
  411.         ptf();
  412.  
  413. as well as in the previous style.  However LSC forces you to include the
  414. asterisk. In my opinion MPW is dead wrong.
  415.  
  416. Joe
  417.  
  418. ------------------------------
  419.  
  420. From: PEABO
  421. Subject: RE: function pointers in C (Re: Msg 2012)
  422. Date: 30-AUG 21:38 Programming Techniques
  423.  
  424. The rule in C is that when you declare an identifier, you use the same
  425. synactic form you use when referencing it later.  So, it does look like
  426. MPW is wrong. However, maybe it is just the compiler not complaining
  427. about something which will produce crazy results at runtime.  Have you
  428. tried executing the funny function call?  Is there any kind of strong
  429. checking of pointer-integer conversions you can do during the compile
  430. using a switch?  IF so, you might find that there is an illegal
  431. conversion going on that the compiler isn't telling you about.
  432.  
  433. peter
  434.  
  435. ------------------------------
  436.  
  437. From: JOSEF
  438. Subject: RE: function pointers in C (Re: Msg 2014)
  439. Date: 30-AUG 22:40 Programming Techniques
  440.  
  441. The 2 forms generate identical code in MPW.  LSC will not even compile
  442. the "incorrect" form.
  443.  
  444. Joe
  445.  
  446. ------------------------------
  447.  
  448. From: PEABO
  449. Subject: HyperCard modification date contaminatio
  450. Date: 31-AUG 00:39 Programming
  451.  
  452. I did some experiments and determined that if you open any HyperCard
  453. stack, the Home stack does get opened for update and gets its
  454. modification date restamped but nothing else happens to it.  If you open
  455. the Home stack directly, the stack gets modified because of the timer
  456. hack that displays "Card field ID 65" as hours and minutes.  This could
  457. be fixed by disabling the timer hack in the Home stack script (where
  458. ever it is, I didn't look for it).
  459.  
  460. You're right though, this is a real PITA for automatic backup programs. 
  461. I hate to suggest it, but maybe we need an "untouch" program that runs
  462. around and resets the modification dates of stacks you know have not
  463. actually been modified.
  464.  
  465. :-( peter
  466.  
  467. ------------------------------
  468.  
  469. From: MEUSE
  470. Subject: OCR Scanner
  471. Date: 31-AUG 21:35 Hardware & Peripherals
  472.  
  473.  
  474. A rep from IOC recently brought their OCR Scanner to our store to demo
  475. it for us.  It was pretty impressive.  It will take a typed page and
  476. convert it to a MacWrite or Microsoft Word doc. It did pretty well on a
  477. not-so-good Xerox of the same page. It can scan and convert the doc in
  478. about a minute. As I understand, Olduvai's Read-It software, which works
  479. with any 300dpi scanner, is slower and only creates an ASCII file, not a
  480. formatted document. At present, IOC's scanner has 8 built-in fonts and 2
  481. selectable. Unfortunately, they don't support Apple's LaserWriter fonts
  482. at present, but I was told they were in the works.  I was also told that
  483. it will have the ability to learn fonts in the near future. We will be
  484. getting one for a 2 week review, I'll let you know how it goes.
  485.  
  486. Steve
  487.  
  488. ------------------------------
  489.  
  490. From: MACWEEKBOS
  491. Subject: RE: OCR Scanner (Re: Msg 22159)
  492. Date: 31-AUG 23:55 Hardware & Peripherals
  493.  
  494. Steve,
  495.  
  496. It sounds great. I look forward to hearing the results of your own,
  497. hands-on testing.  What's the cost?
  498.  
  499. Ric
  500.  
  501. ------------------------------
  502.  
  503. From: MEUSE
  504. Subject: RE: OCR Scanner (Re: Msg 22163)
  505. Date: 1-SEP-18:11: Hardware & Peripherals
  506.  
  507.  
  508. The retail price is $3495.  It should arrive tomorrow.
  509.  
  510. Steve
  511.  
  512. ------------------------------
  513.  
  514. From: MACWEEKBOS
  515. Subject: HyperCard overlapping buttons
  516. Date: 1-SEP-21:02: Business Mac
  517.  
  518. I tried to do some semi-tricky things with overlapping buttons and the
  519. send-farther/bring-closer commands. The whole thing seemed to get pretty
  520. screwed up. Does anyone know how overlapping buttons are supposed to
  521. perform? Is there any way to create some sort of non-rectangular
  522. buttons?
  523.  
  524. Ric
  525.  
  526. ------------------------------
  527.  
  528. From: PEABO
  529. Subject: Importing, sorting, and compacting
  530. Date: 2-SEP-17:39: Programming
  531.  
  532. I have written a small HyperCard stack that imports a file of
  533. comma-delimited items (look for it in the Database as "File Catalog
  534. Example" later this evening).  I discovered a few things about HyperCard
  535. performance.
  536.  
  537. Importing a 480K text file with 7500 records took a couple hours (sorry,
  538. I didn't time it!) and produced a file nearly 2 megabytes long.  This
  539. file claims to have only 7K free, but see below.
  540.  
  541. I then sorted the file on one of the fields ... this took 35 minutes.  I
  542. tell you, it is easy to get hypnotized by that beachball!  I was
  543. watching it sort and the beachball rotates at different rates depending
  544. on the proportion of disk I/O vs. CPU crunching, so it has the most
  545. interesting patterns of activity during the sort.  However, I failed to
  546. discern the algorithm Bill uses from my examination of the pattern :-)
  547.  
  548. The sort is evidently a tag sort, which changes pointers to cards but
  549. doesn't move the data.  I should probably do some more research on this
  550. to verify what I'm saying by dumping out some smaller examples, but I'm
  551. concluding this based on the fact that it took 49 minutes to do a stack
  552. Compaction after the sort, and it seemed to be doing a lot of I/O.  I'm
  553. running a Compaction on the unsorted stack now to see if it takes as
  554. long!  (If anyone has any hard evidence of what HyperCard actually does
  555. during sort and compaction, please let me know.)
  556.  
  557. The interesting thing is that after compaction, the stack was only
  558. 1250K, not 2 megs minus 7K free space!  Evidently the cards must get
  559. overallocated to allow for expansion of the fields, and since this
  560. allocation is not included in the free objects, it doesn't get shown in
  561. the stack statistics.  Once again, some research into this would
  562. probably produce some interesting results.
  563.  
  564. The moral of the story is that you should compact your stacks after
  565. doing any kind of serious messing around with them, because they may
  566. shrink more than you expect!  But beware:  compaction could take a while
  567. on a big stack. Also, I'd treat compaction with the same care that you
  568. give to a disk compactor!  Make a backup first, in case of trouble in
  569. the middle of compaction!
  570.  
  571. (hmmm ... the compaction of the unsorted stack is still going after
  572. nearly 10 minutes ... this definitely bears investigation)
  573.  
  574.  peter
  575.  a/k/a Stackware Detective 2nd Class
  576.  
  577. ------------------------------
  578.  
  579. From: PEABO
  580. Subject: RE: Importing, sorting, and compacting (Re: Msg 22186)
  581. Date: 2-SEP-17:54: Programming
  582.  
  583. OK, I take it back ... that compaction is still running!  Maybe it
  584. doesn't make any difference at all whether the stack is sorted or not in
  585. how long it takes to compact.  I'll get the X-Ray out tonight.
  586.  
  587.  peter
  588.  a/k/a Stackware Detective 3rd Class
  589.  
  590. ------------------------------
  591.  
  592. From: LAMD
  593. Subject: HyperCard Fields
  594. Date: 5-SEP-02:02: Programming
  595.  
  596. I've written a Script that reads a text file into a card field -
  597. sometimes, the text appears properly in the field; at other times, I
  598. have to click somewhere in the field (or select some test and scroll
  599. upwards) to get the text to appear.
  600.  
  601. Anyone know why this is happening?    -Franklin
  602.  
  603. ------------------------------
  604.  
  605. From: DSACHS
  606. Subject: RE: Usenet Mac Digest V3 #64 (Re: Msg 22207)
  607. Date: 5-SEP-15:10: Network Digests
  608.  
  609. >To: korn@cory.Berkeley.EDU (Peter "Arrgh" Korn) 
  610. >Re: SIMM RAM for the MacII
  611.  
  612.  150 NS SIMMs are NOT guaranteed to FAIL if used in circuits requiring a
  613. faster access time.  They just aren't guaranteed to work.  You were
  614. probably lucky. Some of the 150ns parts contain chips that FAILED at a
  615. faster access time, though many were just not tested.
  616.  
  617. ------------------------------
  618.  
  619. From: PEABO
  620. Subject: SIMM RAM for the MacII (Re: Msg 22207)
  621. Date: 5-SEP-19:10: Network Digests
  622.  
  623. >From: korn@cory.Berkeley.EDU (Peter "Arrgh" Korn)
  624. >Subject: SIMM RAM for the MacII
  625. >Date: 1 Sep 87 05:09:35 GMT
  626. >Organization: What, me organized???
  627.  
  628. All RAMs fall into a region of performance (sometimes called a "schmoo"
  629. by testing engineers because of its resemblance to the shape of the Al
  630. Capp cartoon characters) which delineates their access time vs.
  631. temperature, or supply voltage, or maybe phase of the moon (i.e., age of
  632. the chip).
  633.  
  634. The schmoos of 120 ns chips and 150ns chips probably overlap.  It sounds
  635. like your Mac II with 150 ns chips is running in the overlap, but it
  636. would be difficult to say how close to the edge you are, and what will
  637. happen to your hard disk if you get too close.  Personally, I wouldn't
  638. take a chance with it.  There is probably a good reason for Apple to
  639. have specified 120ns.
  640.  
  641. peter                          "In any context, half of all references
  642. PEABO @ DELPHI                  are local and half are global."
  643.  
  644. ------------------------------
  645.  
  646. From: PEABO
  647. Subject: RE: Calculating a new Menu on the spot (Re: Msg 22208)
  648. Date: 5-SEP-19:24: Network Digests
  649.  
  650. >From: larryh@tekgvs.TEK.COM (Larry Hutchinson)
  651. >Subject: Calculating a new Menu on the spot.
  652. >Date: 3 Sep 87 18:26:21 GMT
  653. >Organization: Tektronix Inc., Beaverton, Or.
  654.  
  655. >What is the proper way to calculate and install a revised menu when the
  656. >user presses the mouse button in a specific menu title in the menu bar?
  657.  
  658. Do what MacApp does -- use your technique of deferring the changes you
  659. want done and make sure they are done (for the whole menu) before
  660. allowing a menu selection, but also use the spare time in your idle loop
  661. to catch up with pending changes one at a time.  In many cases, the
  662. catchup will be complete before you try to pull down a menu.
  663.  
  664. peter                          "In any context, half of all references
  665. PEABO @ DELPHI                  are local and half are global."
  666.  
  667. ------------------------------
  668.  
  669. From: SOCCERKING
  670. Subject: A C formatter
  671. Date: 5-SEP-16:49: Tools for Developers
  672.  
  673. I am considering writting a C formatter for MPW C. I am currently
  674. gathering ideas for it, if you have any ideas, suggestions, ect. I would
  675. appreciate them. brent.
  676.  
  677. ------------------------------
  678.  
  679. From: PEABO
  680. Subject: RE: A C formatter (Re: Msg 2037)
  681. Date: 5-SEP-18:35: Tools for Developers
  682.  
  683. (1) take a look at Shebanow's Print program for bolding ideas.
  684.  
  685. (2) whatever you do, don't get involved in the religious wars about the
  686. following:
  687.  
  688.      if (boolean) {
  689.          blah blah
  690.      }
  691.  
  692.      if (boolean)
  693.          {
  694.          bla blah
  695.          }
  696.  
  697. Take a look at my program Prototype Maker.  In the Setup dialog there is
  698. a PrettyPrint button that takes you to a dialog that lets you select
  699. your preferred indentation style (even to some styles nobody on Earth
  700. has even been seen using :-)  The resulting preference can be saved as
  701. part of the 'Cnfg' resource the program reads from a startup-document,
  702. and from there can be ResEdit copied into the application if the user
  703. wants.
  704.  
  705. Shebanow's program is either here in Tools or in MacSIG topic
  706. Programming.  My program is in MacSIG Programming.
  707.  
  708. peter
  709.  
  710.  
  711. ------------------------------
  712.  
  713. End of Delphi Mac Digest
  714. ************************
  715. -------
  716. -------
  717.